WindowConfig

Arguments to create a window. Some may be optional.

A minimum width and height should be supplied.

Members

Variables

contextType
WindowContextType contextType;

Specifies the type of context to create. Validated by the window implementation.

height
uint height;

Height of the window to create. Must be atleast 0 (px).

title
wstring title;

The title of the window to create. Commonly a UTF-8 support should be available. However if not ASCII will be used. Which is effectively a string. Assume ASCII values are safe as a value.

width
uint width;

Width of the window to create. Must be atleast 0 (px).

x
int x;

The x position of the window to be created. It is possible that this is ignored by the implementation.

y
int y;

The y position of the window to be created. It is possible that this is ignored by the implementation.

See Also

Windowable

Meta